.container{
                position: relative;
                width: 100%;
                height: 200px;
                margin: 0 auto;
            }
            .imgs img{
                position: absolute;
                cursor: pointer;
                top: 0;
            }
            .imgs img{
            	width: 100%;
            	height: AUTO;
            }
            .circle{
                width: 200px;
                height: 20px;
                position: absolute;
                bottom:10px;
                left: 80%;
                text-align: center;
                cursor: pointer;
            }
            .circle b{
                display: inline-block;
                width: 18px;
                height: 15px;
                background-color: #000;
                border-radius: 50%;
                margin: 3px;
            }
            .circle .current{
                background-color: #fff;
            }
            .btn{
                position: absolute;
                top: 30%;
                width: 50px;
                height: 60px;
                color: white;
                opacity: 0.5;
                text-align: center;
                line-height: 100px;
                font-size: 60px;
                cursor: pointer;
            }
            .btn:hover{
                background-color: rgba(255, 255, 255, .7);
            }
            .left{
                left: 0;
            }
            .right{
                right: 0;
            }